diff --git a/swh/web/ui/templates/api.html b/swh/web/ui/templates/api.html index b4cb3b95..9d5dba7b 100644 --- a/swh/web/ui/templates/api.html +++ b/swh/web/ui/templates/api.html @@ -1,21 +1,21 @@ {% extends "layout.html" %} {% block title %}API Overview{% endblock %} {% block content %} <div class="api-doc"> {% for route, doc in doc_routes %} {% if 'deprecated' in doc and doc['deprecated'] is not none %} - <div class="api-doc-route-deprecated"> + <div class="api-doc-route api-doc-route-deprecated"> <h2> {{ route }} </h2> {% elif 'upcoming' in doc and doc['upcoming'] is not none %} - <div class="api-doc-route-upcoming"> + <div class="api-doc-route api-doc-route-upcoming"> <h2> {{ route }} </h2> {% else %} <div class="api-doc-route"> <h2> <a href="{{ route }}">{{ route }}</a> </h2> {% endif %} {% autoescape off %}{{ doc['docstring'] | safe_docstring_display }}{% endautoescape %} </div> </br> {% endfor %} </div> {% endblock %}